@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'DM Sans', sans-serif;

    --primary: #1F3528;
    --primary-light: #71806D;
    --sage: #AAB4A3;

    --gold: #B99A68;
    --gold-light: #D8C5A3;

    --background: #FAF9F5;
    --white: #FFFFFF;
    --cream: #F2EEE6;

    --heading: #20241F;
    --text: #4F544D;
    --muted: #74766F;

    --border: #E5E0D6;
}


html {
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}



button,
input,
textarea {
    font-family: inherit;
}


a {
    text-decoration: none;
    color: currentColor;
}

.line {
    width: 250px;
    height: 2px;
    background: var(--gold);
}

.line-sm {
    width: 100px;
    height: 2px;
    background: var(--gold);
}

.line-lg {
    width: 100%;
    height: 1px;
    background: var(--gold);
}

.secondary-background {
    background: var(--gold-light);
    position: relative;
}

.center-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
    text-align: center;
}

/* ----------------------------------------------- */
/* ------------------Container------------------- */
/* --------------------------------------------- */

.container {
    max-width: 1200px;
    position: relative;
    margin: auto;
}

@media (max-width:1250px) {
    .container {
        max-width: 100%;
        padding: 0rem 5rem;
    }
}

@media (max-width:768px) {
    .container {
        max-width: 100%;
        padding: 0rem 2rem;
    }
}

@media (max-width:468px) {
    .container {}
}

/* ------------------------------------ */
/* -------------Padding--------------- */
/* ---------------------------------- */

.padding-lg {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.padding-lgg {
    padding-bottom: 10rem;
}



/* ------------------------------------ */
/* -------------Animation------------- */
/* ---------------------------------- */

@keyframes fadeup {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadedown {

    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* ----------------------------------------------------------- */
/* ------------------------Heading--------------------------- */
/* --------------------------------------------------------- */

.heading-big {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--white);
    text-wrap: balance;
    animation: fadeup ease-in 1s;
}

.heading {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 4vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--green);
    text-wrap: balance;
}


.heading-lg {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--green);
    text-wrap: balance;
}

.heading-md {
    font-family: var(--heading-font);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--green);
    text-wrap: balance;
}

.heading-sm {
    font-family: var(--heading-font);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.005em;
    color: var(--heading);
    text-wrap: balance;
}

.heading-xs {
    font-family: var(--heading-font);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.005em;
    color: var(--heading);
    text-wrap: balance;
}

/* -------------------------------------------------- */
/* ----------------------Text----------------------- */
/* ------------------------------------------------ */

.text-hero {
    color: var(--cream);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .01em;
    max-width: 550px;
    margin: auto;
    animation: fadeup ease-in 1s;
}

.text-black {
    color: var(--text);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .01em;
}

.text-white {
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .01em;
}

/* .text-gold {
    color: #D8AD6C;
    font-size: 0.90rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .01em;
}
*/
.text-blod {
    color: var(--heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.9;
    letter-spacing: .01em;
}


/* -------------------------------------------------------- */
/* -------------------Sub Text---------------------------- */
/* -------------------------------------------------------*/


.sub-headiing {
    color: var(--gold);
    font-size: 0.80rem;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.sub-text {
    color: var(--green);
    font-size: 1rem;
}

/* ---------------------------------------------- */
/* ----------------Button----------------------- */
/* -------------------------------------------- */



.button-hero {
    background: transparent;
    color: var(--cream);
    padding: 10px 40px;
    border-radius: 999px;
    border: none;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .01em;
    border: 1px solid var(--gold);
    align-self: center;
    cursor: pointer;
    transition: all 0.5s;
    animation: fadeup ease-in 1s;

}

.button-hero:hover {
    color: var(--white);
    background: var(--gold);
}

.button {
    background: transparent;
    color: var(--heading);
    padding: 10px 40px;
    border-radius: 999px;
    border: none;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .01em;
    align-self: flex-start;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.5s;
}

.button:hover {
    color: var(--white);
    background: var(--gold);
}



.button-color {
    background: var(--gold);
    color: var(--heading);
    padding: 10px 40px;
    border-radius: 999px;
    border: none;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .01em;
    align-self: flex-start;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.5s;
}

.button-color:hover {
    background: var(--white);
    color: var(--heading);
}


/* ------------------------------------------------ */
/*------------- Hero Section---------------------- */
/* ---------------------------------------------- */

.hero {
    position: relative;
    min-height: 120vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    background: url("/assets/images/image7.jpg") center center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(10, 20, 12, .45),
            rgba(10, 20, 12, .38));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 90%);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}



@media (max-width:500px) {
    .hero-content {
        width: 90%;
    }

}

/* --------------------------------------------------- */
/* ----------------About Section--------------------- */
/* ------------------------------------------------- */

.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.about-subcontent {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    z-index: -1;
    background: var(--gold);
    width: 250px;
    height: 250px;
    right: -5%;
    top: -5%;
    border-radius: 4px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width:1008px) {
    .about-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ---------------------------------------------------------------------------- */
/* ----------------------------service-container------------------------------ */
/* -------------------------------------------------------------------------- */

.service-section {
    position: relative;
    background: url('/assets/images/Buddha.jpg') center / cover no-repeat;
}

.service-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.80);
    z-index: 0;
}

.service-section>* {
    position: relative;
    z-index: 1;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
}

.service {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.3rem;
    text-align: center;
}

.service-image {
    overflow: hidden;
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease 5s;
    cursor: pointer;
}

.service-image img:hover {
    transform: scale(2);
}

.service-button {
    border: none;
    border: 1px solid var(--gold);
    padding: 0.5rem 1.2rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.service-button:hover {
    background: var(--white);
    color: var(--heading);
}

/* -------------------------------------------------------------- */
/* ----------------------Ecosystem------------------------------ */
/* ------------------------------------------------------------ */



.ecosystem {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.ecosystem-image {
    overflow: hidden;
    height: 400px;
}

.ecosystem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.ecosystem-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 2rem;
}

.hide-button {
    display: none;
}

@media (max-width:960px) {
    .ecosystem {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .show-button {
        display: none;
    }

    .hide-button {
        display: flex;
    }
}


/* ----------------------------------------- */
/* -------------facility------------------- */
/* --------------------------------------- */

.facility {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
}

.facility-item {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.facility-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--green);
    flex-shrink: 0;
    border: 3px solid var(--accent);

}

.facility-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width:700px) {
    .facility {
        gap: 4rem;
    }

    .facility-item {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* ------------------------------------------------- */
/* -----------Facility-Gallery-Container----------- */
/* ----------------------- ------------------------*/

.department-gallery-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.department-gallery-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.facility-gallery-container {
    position: relative;
    margin-top: 3rem;

}

.facility-gallery-container .swiper {
    width: 100%;
}

.facility-gallery-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 4px;
}

.facility-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-text {
    font-family: var(--body-font);
    font-size: clamp(0.8rem, 3vw, 1.1rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--green);
    text-wrap: balance;
    text-align: center;
    margin-top: 1rem;
}

.blog-nav {
    display: flex;
    gap: 0.5rem;
    justify-content: end;
    margin-bottom: 1rem;
}

.swiper-btn {
    color: var(--gold);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    border-radius: 50%;
    background: transparent;
    transition: all ease-in-out 0.8s;
    border: 1px solid var(--gold-light);
}


/* -------------------------------------------------------- */
/* --------------------Image-Popup------------------------ */
/* ------------------------------------------------------ */

.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000000000;
}

.popup-content {
    position: relative;
    background: #f8f9f954;
    padding: 5px;
    border-radius: 8px;
}

.popup-content img {
    max-width: 80vw;
    max-height: 80vh;
    display: block;
}


.close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f8f9f954;
    color: var(--green);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* ----------------------------------------------------------- */
/* ------------------Banner-container------------------------- */
/* --------------------------------------------------------- */

.banner-container {
    width: 100%;
    height: 20rem;
}

/* ----------------------------------------------------------- */
/* ------------------Treatment-image------------------------- */
/* --------------------------------------------------------- */

.treatment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.2rem;
}

/* ------------------------------------------------------- */
/* --------------otherAttraction-grid-------------------- */
/* ----------------------------------------------------- */

.otherattraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 340px));
    justify-content: center;
    gap: 2rem;
    row-gap: 3rem;
    margin-top: 3rem;
}

.other-attraction {

    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    border: 1px solid #1b301d1c;
    border-radius: 8px;
}

.other-attraction img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.other-attraction-link {
    font-size: 0.8rem;
    text-decoration: underline;
    color: #7a7a76;
}

/* -------------------------------------------------------- */
/* --------------------contact-container------------------ */
/* ------------------------------------------------------ */


.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact {
    flex: 1 1 300px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 4rem;

}

.contact-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 1.5rem;
    background: var(--gold);
    border: 1px solid var(--white);
    outline: 2px solid var(--gold);
}

.contact-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-heading {
    font-family: var(--heading-font);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--green);
    text-wrap: balance;

}



.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    min-height: 20rem;
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-sub-form {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
}

.contact-label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
}

.contact-form input {
    padding: 0.8rem 1rem;
    border-radius: 1000px;
    border: none;
    outline: none;
    background: var(--white);
    outline: 1px solid #d8c5a354;
}

.contact-form textarea {
    padding: 0.8rem 1rem;
    border-radius: 18px;
    border: none;
    outline: none;
    background: var(--white);
    outline: 1px solid #d8c5a354;

}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #302716;
}

.form-button {
    background: var(--gold);
    color: var(--white);
    padding: 10px 10px;
    border-radius: 1000px;
    border: none;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .01em;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

@media (max-width:668px) {
    .contact-sub-form {
        display: flex;
        flex-direction: column;
    }
}


/* --------------------------------------------------- */
/* -------------------faq---------------------------- */
/* ------------------------------------------------- */

.faq {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-quesion-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 5rem;
}

.quesion {
    display: flex;
    justify-content: space-between;
    align-content: center;
    border-top: 1px solid #7a7a763a;
    padding: 1rem 0rem;
}

.answer {
    display: none;
}

.answer.ansactive {
    display: block;
}

.menu-btn {
    border: none;
    background: transparent;
    cursor: pointer;
}



/* ------------------------------------------------------- */
/* --------------gallery-Container----------------------- */
/* ----------------------------------------------------- */

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
    margin-top: 5rem;
}

.gallery-item-container {
    text-align: center;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item {
    width: 100%;
    height: 350px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.gallery-item-text {
    padding: 1rem;
    color: var(--heading);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.9;
    letter-spacing: .01em;
}

.gallery-item-logo {
    position: absolute;
    top: 0;
    padding: 1rem;
    color: var(--white);
    right: 0;
}

.gallery-item:hover img {
    transform: scale(1.01);
}

.subGallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 5rem;
}

.subGallery-item {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 4px;
}

.subGallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.new-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 100000000000000000000;
}

.new-popup-content {
    position: relative;
    padding: 5px;
    border-radius: 8px;
}

.new-popup-content img {
    max-width: 80vw;
    max-height: 80vh;
    display: block;
    border: 5px solid var(--gold-light);
    border-radius: 4px;
}


.new-close-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}


.new-prev-btn,
.new-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    font-size: 20px;
    color: #ffffff;
}


.new-prev-btn {
    left: -55px;
}

.new-next-btn {
    right: -55px;
}

@media (max-width:1008px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ---------------------------------------------------- */
/* ----------------founder-container------------------ */
/* -------------------------------------------------- */

.founder-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    row-gap: 3rem;
    background: var(--background);
    padding: 2rem 0rem;
    margin-top: 2rem;
    border-radius: 4px;

}

.founder-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 0rem 1rem;
    border-left: 1px solid #b5885a38;
}

.founder-points:first-child {
    border: none;
}

.founder-points-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    flex-shrink: 0;
    border: 1px solid var(--white);
    outline: 2px solid var(--gold);
}

.founder-points-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----------------------------------------------------------- */
/* -----------------nav-container---------------------------- */
/* --------------------------------------------------------- */

.nav-container {
    position: absolute;
    z-index: 1000000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #aab4a34f;
}

.nav-sub-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem;
    animation: fadedown 1s ease;
    margin-top: 0.5rem 0.5rem;
}

.navlogo {
    width: 50px;
    height: 50px;
    display: none;
    background: #ffffff91;
    padding: 0.2rem;
    border-radius: 50%;
}

.navlogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.90rem;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.nav-links a:focus {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.nav-links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    padding: 1rem;
    border-radius: 2px;
    font-size: 1.5rem;
    color: var(--white);
}



@media (max-width:1300px) {
    .nav-container {
        justify-content: space-between;
        padding: 0rem 2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 2rem;
        position: absolute;
        background: var(--primary);
        top: 65px;
        left: 0;
        right: 0;
        z-index: 9999;
        padding: 3rem 2rem;
        border: 5px solid #a26a3d15;
    }

    .mobile-menu {
        display: block;
    }

    .active {
        display: flex;
    }

    /* .navlogo {
        display: block;
    } */
}


/* ------------------------------------------------------------- */
/* ------------------------------------------------------------ */
/* ----------------------------------------------------------- */

.leaf-box-top {
    width: 300px;
    height: 300px;
    position: absolute;
    top: 0;
    left: -7%;
    z-index: -9999;
}


.leaf-box-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.leaf-box-bottom {
    width: 300px;
    height: 300px;
    position: absolute;
    bottom: 0;
    right: -7%;
    z-index: -9999;
}


.leaf-box-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}


.leaf-box-top-right {
    width: 200px;
    height: 400px;
    position: absolute;
    top: 0;
    right: -7%;
    z-index: -9999;
}


.leaf-box-top-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

/* ------------------------------------------------------------ */
/* ---------------Consultant-container------------------------ */
/* ---------------------------------------------------------- */

.Consultant-container {
    display: grid;
    grid-template-columns: repeat(1fr);
    gap: 3rem;
}

/* --------------------------------------------------------- */
/* ------------------------footer-------------------------- */
/* ------------------------------------------------------- */

footer {
    background: var(--primary);
    width: 99%;
    margin: auto;
    border-radius: 20px;
    margin-bottom: 1rem;
    padding: 3rem 3rem;
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0rem;
}

.footer-links-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-header {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.footer-link-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.link-logo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in;
    cursor: pointer;
}

.link-logo:hover {
    background: var(--gold);
    color: var(--background);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff50;
    padding: 2rem 0rem;
}

.footer-bottom .text-white {
    color: #cfcdc8;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .01em;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0rem;
}

.footer-company {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.035em;
    color: var(--gold);
    text-wrap: balance;
}

.Subscribe {
    border: 1px solid var(--gold-light);
    border-radius: 999px;
    padding: 0.1rem;
    border-radius: 999px;
}

.Subscribe input {
    background: transparent;
    border-radius: 999px;
    padding: 10px 20px;
    border: none;
    color: var(--white) !important;
    outline: none;
}

@media (max-width:1250px) {
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .Subscribe {
        display: none;
    }
}

/* ------------------------------------------------------------ */
/* ---------------transformation-container-------------------- */
/* ---------------------------------------------------------- */

.transformation-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
}

.transformation {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--background);
    padding: 1.5rem 2rem;
    border-radius: 4px;
}

.transformation-image {
    width: 90%;
    height: 400px;
    background: url('/assets/images/image4.jpg')center/cover no-repeat;
    margin-top: 2rem;
    border-radius: 4px;
    overflow: hidden;
}

.transformation-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}


.transformation-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    flex-shrink: 0;
    border: 1px solid var(--white);
    outline: 2px solid var(--gold);
    padding: 0.8em;
}

.transformation-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:468px) {
    .transformation {
        flex-direction: column;
        align-items: self-start;
    }
}

/* ------------------------------------------------------------- */
/* ------------------------Home-gallery------------------------ */
/* ----------------------------------------------------------- */

.Home-gallery {
    width: 100%;
    height: 450px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.2fr 1.1fr 1.1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    overflow: hidden;
}

.Home-gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 1px;
}

.Home-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* filter: grayscale(100%); */
}

.item-1 {
    grid-column: 1 / 3;
    grid-row: 1;
}

.item-2 {
    grid-column: 1 / 3;
    grid-row: 2;
}

.item-3 {
    grid-column: 3;
    grid-row: 1 / 3;
}

.item-4 {
    grid-column: 4 / 6;
    grid-row: 1;
}

.item-5 {
    grid-column: 4;
    grid-row: 2;
}

.item-6 {
    grid-column: 5;
    grid-row: 2;
}


@media (max-width: 600px) {

    .Home-gallery {
        height: auto;

        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }

    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5,
    .item-6 {
        grid-column: auto;
        grid-row: auto;
    }

    .item-3 {
        grid-column: 1 / 3;
    }
}

.Gallery-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
}

.Gallery-link a {
    background: var(--gold);
    color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0.2rem;
    width: 20px;
    height: 20px;
}




/* ------------------------------------------------ */
/* -----------------testimonial------------------- */
/* ---------------------------------------------- */


.testimonial-section {
    position: relative;
    background: url('/assets/images/Budha2.jpg') center / cover no-repeat;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.40);
    z-index: 0;
}

.testimonial-section>* {
    position: relative;
    z-index: 1;
}

.testimonial-container {
    position: relative;
}

.testimonial-container .swiper {
    width: 100%;
}

.testimonial-container .swiper-wrapper {
    align-items: stretch;
}

.testimonial-container .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial {
    background: var(--white);
    padding: 2rem 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
    height: 100%;
}

.testimonial-bottom {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-top-image {
    width: 60px;
    height: 40px;
    align-self: flex-end;
    margin-bottom: 1.2rem;
}

.testimonial-sub-text {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: -0.2rem;
}

.testimonial-nav {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.swiper-button {
    border: 1px solid var(--background);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    cursor: pointer;
}